home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / Beteroid.swf / scripts / DefineButton2_67 / BUTTONCONDACTION on(keyPress p).as next >
Encoding:
Text File  |  2006-06-13  |  183 b   |  13 lines

  1. on(keyPress "p"){
  2.    if(pause == 0)
  3.    {
  4.       pause = 1;
  5.       interfaz.alerta = "<P  A  U  S  E>";
  6.    }
  7.    else
  8.    {
  9.       interfaz.alerta = "";
  10.       pause = 0;
  11.    }
  12. }
  13.